home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / PowerPlant / CContextHandler / * Read Me * next >
Text File  |  1995-10-09  |  2KB  |  32 lines

  1. CContextHandler.cp
  2. version 1.0, 10/9/95
  3. ©1995 Harold Ekstrom. All rights reserved.
  4.  
  5. The CContextHandler class encapsulates AppleGuide context checking for PowerPlant applications. It uses a single ContextReplyProc to dispatch context checks to specific context checking objects. Two useful subclasses are provided for checking the enabled state of commands and the front window's pane id. These context checks are more powerful than the kinds of context checking that can be done from external modules because they don't depend on menu item text or position or on window title or size.
  6.  
  7. This class may be freely used in any project.  The source itself may not be sold.  The source may be placed on ftp sites, BBSs, and similar locations but distribution on solid media, CD, floppy, etc, requires my permission.
  8.  
  9. Usage:
  10.  
  11. (1) During application startup create the context checking objects like this:
  12. Try_{
  13.     new CCmdContextHandler( 'cmd ' );
  14.     new CPaneIDContextHandler( 'pane' );
  15. } Catch_( inErr ) {
  16. } EndCatch_
  17.  
  18. (2) In your guide file source, define the context checks like this:
  19. <Define Context Check> "IsCommandEnabled", 'cmd ', '????', LONG
  20. <Define Context Check> "IsFrontWindowPaneID", 'pane', '????', LONG
  21. where '????' is replaced by your application's creator.
  22.  
  23. (3) And finally use it in your guide source like any other context check.
  24.  
  25. Note: when you compile your guide source GuideMaker will give you a warning that there's no external module for the context checks you've defined. Just ignore it.
  26.  
  27. Harold Ekstrom
  28. the ag group, inc.
  29. ekstrom@aggroup.com
  30. ftp://ftp.aggroup.com/
  31. http://www.aggroup.com/
  32.